home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Presentations / Presentations ’96 / Sessions ’96 / ODF- Easy OpenDoc / MacHack(1) / Sources / Frame.h < prev    next >
Encoding:
Text File  |  1996-06-05  |  1.4 KB  |  50 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                Frame.h
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FRAME_H
  11. #define FRAME_H
  12.  
  13. // ----- Framework Includes -----
  14.  
  15. #ifndef FWFRAME_H
  16. #include "FWFrame.h"
  17. #endif
  18.  
  19. //========================================================================================
  20. // Forward Class Desclarations
  21. //========================================================================================
  22.  
  23. class FW_CPresentation;
  24. class FW_CPart;
  25.  
  26. //========================================================================================
  27. // CLASS CMacHackFrame
  28. //========================================================================================
  29.  
  30. class CMacHackFrame : public FW_CFrame
  31. {
  32. //----------------------------------------------------------------------------------------
  33. //    Initialization/Destruction
  34. //
  35. public:
  36.     FW_DECLARE_AUTO(CMacHackFrame)
  37.  
  38.     CMacHackFrame(Environment* ev, ODFrame* odFrame, FW_CPresentation* presentation, FW_CPart* part);
  39.     virtual ~CMacHackFrame();
  40.  
  41. //----------------------------------------------------------------------------------------
  42. //    Inherited API
  43. //
  44. public:
  45.     virtual void Draw(Environment* ev, ODFacet* odFacet, ODShape* invalidShape);
  46.  
  47. };
  48.  
  49. #endif
  50.